All Questions
11 questions
1vote
0answers
724views
Angular UI Bootstrap loses focus of field after selecting date
After user selects the date, I want to focus to stay on the calendar input field. Currently, the focus will stay if the user selects "Today" "Clear" or "Close" but not if they select a date. I ...
0votes
0answers
44views
Telling angular to pickup a dynamically added directive
I am creating a bootstrap popover and I'm trying to use a directive in the content of the popover. I use the following HTML: <div data-animation="false" data-template='<div style="width: ...
1vote
0answers
46views
How can i register third-party directive with another name?
I am upgrading my app from ui-bootstrap 0.11 to to 1.1.2. As a part of the upgrade i should prefix the directives with "ui" for example, tab should become ui-tab. I want to avoid this huge replacement ...
3votes
2answers
3kviews
Angular directive for bootstrap popover
I write my custom directive for bootstrap popover, but face some trouble. This is the code: angular.module('CommandCenterApp') .directive('bzPopover', function($compile,$http, $commandHelper) { ...
0votes
0answers
363views
Save to system dialog box in AngularJS
how to get the windows "Save as dialog box" on click of some button in AngularJS? I need to give the facility to save the data in a div tag to a file the user wants in his system.
0votes
1answer
192views
Angular - similar Directives
In my application I need to use few layouts of progress bar: One with label bellow the bar, one with 3 labels to the right of the bar to name just two. There should be some horizontal bars and ...
1vote
1answer
1kviews
Native Bootstrap vs Angularjs Bootstrap directive
I am migrating an existing web application to AngularJS. As the application is already using Bootstrap 3 I am wondering if it is worth re-writing it with Boostrap Directives. My current understanding ...
3votes
2answers
9kviews
ng-pattern Validation not working
I am trying to do validation with angular and Bootstrap but for some reasons ng-pattern validation is not working in Zip Code. Any help will be great in this. Here's FIDDLE LINK Not able to paste ...
3votes
3answers
5kviews
Extend angularUI popover directive to create a confirm popover
I am trying to create a easy confirm popover when in angularJS. I'm already using AngularUI for many other components which is why it seems like the natural choice to extend. I have created a ...
6votes
2answers
6kviews
Angular ui tab with seperate controllers for each tab
I would like to make a bootstrap tabset with each tab having it's own controller. Can anyone point me in which direction I should go. Currently I have made several difference controllers, which I ...
1vote
1answer
720views
UI Bootstrap Typahead async not working in AngularJS RC2
Why is the UI Bootstrap Typahead not working in AngularJS RC2 when using the $http service to retreive matches from server? This was working in AngularJS RC1 See this plunker using RC1 and this ...